from template import Handle, fillAttr, quoteAndFillAttr, funcTable
from IOBuffer import IOBuffer
from xhtmltools import urlencode
from templatehelper import quoteattr, escape, evalKey, toUni
def fillTemplate(data, domHandler):
# Start of handle
handle = Handle(domHandler)
out = IOBuffer()
out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n")
out.write(u'<span>This is my <i>include</i> file.</span>')